home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlib25 / difftime.c < prev    next >
C/C++ Source or Header  |  1992-10-08  |  155b  |  10 lines

  1. /* return difference between two time_t types -- ERS*/
  2.  
  3. #include <time.h>
  4.  
  5. double difftime(t2, t1)
  6. time_t t2, t1;
  7. {
  8.     return (double) (t2 - t1);
  9. }
  10.